home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 17 / CU Amiga Magazine's Super CD-ROM 17 (1997)(EMAP Images)(GB)[!][issue 1997-12].iso / CUCD / Programming / DiceSource / src / alib / csup / PROTOS / alib_stdio_protos.h < prev   
C/C++ Source or Header  |  1995-12-24  |  753b  |  30 lines

  1. #ifndef  CLIB_ALIB_STDIO_PROTOS_H
  2. #define  CLIB_ALIB_STDIO_PROTOS_H
  3.  
  4. /*
  5. **    $Id: alib_stdio_protos.h,v 30.0 1994/06/10 18:10:34 dice Exp $
  6. **
  7. **    C prototypes. For use with 32 bit integers only.
  8. **
  9. **    (C) Copyright 1990 Commodore-Amiga, Inc.
  10. **        All Rights Reserved
  11. */
  12.  
  13. #ifndef  EXEC_TYPES_H
  14. #include <exec/types.h>
  15. #endif
  16.  
  17. /* stdio functions that duplicate those in a typical C library */
  18.  
  19. LONG printf( STRPTR fmt, ... );
  20. LONG sprintf( STRPTR buffer, STRPTR fmt, ... );
  21. LONG fclose( long stream );
  22. LONG fgetc( long stream );
  23. LONG fprintf( long stream, STRPTR fmt, ... );
  24. LONG fputc( long c, long stream );
  25. LONG fputs( UBYTE *s, long stream );
  26. LONG getchar( void );
  27. LONG putchar( long c );
  28. LONG puts( BYTE *s );
  29. #endif   /* CLIB_ALIB_STDIO_PROTOS_H */
  30.